v2.8.0 bump (#248)
authorSteven G. Johnson <stevenj@alum.mit.edu>
Sun, 30 Oct 2022 21:24:01 +0000 (17:24 -0400)
committerGitHub <noreply@github.com>
Sun, 30 Oct 2022 21:24:01 +0000 (17:24 -0400)
* version 2.8.0 bump

* NEWS link

CMakeLists.txt
MANIFEST
Makefile
NEWS.md
utf8proc.h

index 40d8751c1c0129cf5506cedbd9d6f3ae1d52695a..2ff0058e7d5bafffa5b5ecb932534a8432ceaa6e 100644 (file)
@@ -7,13 +7,13 @@ disallow_intree_builds()
 if (POLICY CMP0048)
   cmake_policy (SET CMP0048 NEW)
 endif ()
-project (utf8proc VERSION 2.7.0 LANGUAGES C)
+project (utf8proc VERSION 2.8.0 LANGUAGES C)
 
 # This is the ABI version number, which may differ from the
 # API version number (defined in utf8proc.h and above).
 # Be sure to also update these in Makefile and MANIFEST!
 set(SO_MAJOR 2)
-set(SO_MINOR 5)
+set(SO_MINOR 6)
 set(SO_PATCH 0)
 
 option(UTF8PROC_INSTALL "Enable installation of utf8proc" On)
index 9a661b0b4d23edff30a433b933dfe12c45abc3cf..db27dd455357b8eeb538477389bcb07a8deb68b4 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -2,8 +2,8 @@ include/
 include/utf8proc.h
 lib/
 lib/libutf8proc.a
-lib/libutf8proc.so -> libutf8proc.so.2.5.0
-lib/libutf8proc.so.2 -> libutf8proc.so.2.5.0
-lib/libutf8proc.so.2.5.0
+lib/libutf8proc.so -> libutf8proc.so.2.6.0
+lib/libutf8proc.so.2 -> libutf8proc.so.2.6.0
+lib/libutf8proc.so.2.6.0
 lib/pkgconfig/
 lib/pkgconfig/libutf8proc.pc
index 1e5d398596665882fc20be021400a7931fc926be..98af081e04c4f19288a4a6554d484da68f68f4b9 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -23,7 +23,7 @@ SOFLAG = -Wl,-soname
 # The API version number is defined in utf8proc.h.
 # Be sure to also update these ABI versions in MANIFEST and CMakeLists.txt!
 MAJOR=2
-MINOR=5
+MINOR=6
 PATCH=0
 
 OS := $(shell uname)
diff --git a/NEWS.md b/NEWS.md
index 0b7e839baceff30720cc9d25f12bb9ab5d87a03b..fc148601400b3ba7a6cd36df0ee8b31ee8eea71b 100644 (file)
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,6 +1,8 @@
 # utf8proc release history #
 
-## Version 2.8.0-alpha ##
+## Version 2.8.0 ##
+
+2022-10-30
 
  - Unicode 15 support ([#247]).
 
@@ -433,3 +435,4 @@ Release of version 1.0.1
 [#205]: https://github.com/JuliaStrings/utf8proc/issues/205
 [#224]: https://github.com/JuliaStrings/utf8proc/issues/224
 [#233]: https://github.com/JuliaStrings/utf8proc/issues/233
+[#247]: https://github.com/JuliaStrings/utf8proc/issues/247
index 1659471847fb5d770486eea0030829c368267c5e..7ec591d3277d5edbf7ecfd77bc7f0cb56cdaa597 100644 (file)
@@ -71,7 +71,7 @@
 /** The MAJOR version number (increased when backwards API compatibility is broken). */
 #define UTF8PROC_VERSION_MAJOR 2
 /** The MINOR version number (increased when new functionality is added in a backwards-compatible manner). */
-#define UTF8PROC_VERSION_MINOR 7
+#define UTF8PROC_VERSION_MINOR 8
 /** The PATCH version (increased for fixes that do not change the API). */
 #define UTF8PROC_VERSION_PATCH 0
 /** @} */